home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…tion Library 4 (Reseller) / Apple Ref. & Pres. Lib.v4.0.iso / 6-Apple⁄DEC Alliance / Solutions & Networking Guide / Macintosh Networking Guide / Macintosh Networking Guide / card_5312.txt < prev    next >
Text File  |  1990-04-17  |  19KB  |  833 lines

  1. -- card: 5312 from stack: in
  2. -- bmap block id: 8505
  3. -- flags: 0000
  4. -- background id: 18894
  5. -- name: MacCloseUp
  6. ----- HyperTalk script -----
  7. on openCard
  8.   global holder,env,sol
  9.   put empty into card field "Explainer"
  10.   put empty into card field "Choice"
  11.   put empty into card field "Category"
  12.   put empty into card field "Reads"
  13.   put empty into card field "Writes"
  14.   put empty into cd fld "Network"
  15.   put "Macintosh Configuration Screen" into fld "Tell"
  16.   put sol into cd fld "sol"
  17.   hide cd btn "solChoiceHilite"
  18.   hide cd btn "envChoiceHilite"
  19.   hide cd btn "solListHiliter"
  20.   hide cd btn "envListHiliter"
  21.   hide cd fld "solList"
  22.   hide cd fld "envList"
  23.   if env is "Mac" then
  24.     put "Macintosh" into cd fld "env"
  25.   else
  26.     put env into cd fld "env"
  27.   end if
  28.   --engine begin
  29.   put card field (env && sol) of card "Mac Grid" into holder
  30.   if holder is empty
  31.   then
  32.   put "Solutions for " & env && sol && "are not included in this release." into card fld "Explainer"
  33.   exit openCard
  34. end if
  35. repeat with i = 1 to the number of lines of holder
  36.   if item 1 of line i of holder <> empty then
  37.     put item 1 of line i of holder & return after card field "Explainer"
  38.   end if
  39. end repeat
  40. end openCard
  41.  
  42. on mouseUp
  43.   --beep 1
  44.   --put "This needs to keep track of which level you came from, JONATHAN."
  45.   --‚Ä¢using the level buttons seems the best way, offhand, that way
  46.   --‚Ä¢the hilited button is the structure.  JON
  47.   set lockscreen to true
  48.   --send mouseUp to cd btn id 20
  49.   unlock screen with dissolve
  50. end mouseUp
  51.  
  52. on closeCard
  53.   put empty into fld "Tell"
  54.   set hilite of cd btn id 20 to false
  55.   set hilite of cd btn id 19 to false
  56.   set scroll of cd fld "Explainer" to zero
  57.   --‚àÜ hide pull down menus
  58.   hide cd btn "explainerHiliter"
  59.   hide cd fld "envList"
  60.   hide cd fld "solList"
  61. end closeCard
  62.  
  63. on extractMac
  64.   global sol,env,holder
  65.   --environments,envnum,solutions,solnum,holder
  66.   get card field (env && sol) of card "Mac Grid"
  67.   put empty into holder
  68.   repeat with i = 1 to the number of lines of it
  69.     if item 1 of line i of it <> empty then
  70.       put line i of it & return after holder
  71.     end if
  72.   end repeat
  73. end extractMac
  74.  
  75. on extractHost
  76.   global sol,env,holder
  77.   get card field (env && sol) of card "Mac Grid"
  78.   put empty into holder
  79.   repeat with i = 1 to the number of lines of it
  80.     if item 2 of line i of it <> empty then
  81.       put line i of it & return after holder
  82.     end if
  83.   end repeat
  84. end extractHost
  85.  
  86.  
  87. -- part 42 (button)
  88. -- low flags: 00
  89. -- high flags: 0000
  90. -- rect: left=0 top=0 right=303 bottom=512
  91. -- title width / last selected line: 0
  92. -- icon id / first selected line: 0 / 0
  93. -- text alignment: 1
  94. -- font id: 0
  95. -- text size: 12
  96. -- style flags: 0
  97. -- line height: 16
  98. -- part name: screen Button
  99.  
  100.  
  101. -- part 2 (field)
  102. -- low flags: 01
  103. -- high flags: 2007
  104. -- rect: left=170 top=63 right=149 bottom=421
  105. -- title width / last selected line: 0
  106. -- icon id / first selected line: 0 / 0
  107. -- text alignment: 0
  108. -- font id: 242
  109. -- text size: 10
  110. -- style flags: 0
  111. -- line height: 13
  112. -- part name: Explainer
  113. ----- HyperTalk script -----
  114. on mouseUp
  115.   global holder,prodname,Reads,Writes,Network,tidyUpNow,tidyUpSome
  116.   set hilite of btn id 20 to false
  117.   set hilite of btn id 19 to false
  118.   put empty into cd fld "Reads"
  119.   put empty into cd fld "Writes"
  120.   put empty into cd fld "Network"
  121.   put selectionAndHiliter() into cardline
  122.   put line cardline of me into prodname
  123.   if prodname contains "No Solutions" then
  124.     put empty into prodname
  125.     exit mouseUp
  126.   end if
  127.   if prodname is empty then
  128.     answer "Empty Choice!" with "Try Again"
  129.     exit mouseup
  130.   end if
  131.   --‚àÜ Downgrade cleanup if they chose a product after changing the env.
  132.   if tidyUpNow is true then
  133.     put false into tidyUpNow
  134.     put true into tidyUpSome
  135.   end if
  136.   put prodname into cd fld "choice"
  137.   set lockscreen to true
  138.   set cursor to busy
  139.   repeat with i = 1 to the number of lines of holder
  140.     if item 1 of line i of holder is prodname then
  141.       put item 3 of line i of holder into cd fld "Category"
  142.       parseR
  143.       put Reads after cd field "Reads"
  144.       parseW
  145.       put Writes after cd field "Writes"
  146.       parseN
  147.       put Network after cd field "Network"
  148.       exit repeat
  149.     end if
  150.   end repeat
  151.   if Reads is empty then put "N/A" into cd field "Reads"
  152.   if Writes is empty then put "N/A" into cd field "Writes"
  153.   if Network is empty then put "N/A" into cd field "Network"
  154.   if cd fld "Category" is empty then put "N/A" into cd field "Category"
  155.   unlock screen with dissolve fast
  156. end mouseUP
  157.  
  158. on mouseEnter
  159.   put "Products Field" & return & "click to select a product" into fld "Tell"
  160.   changeCurs 6069
  161. end mouseEnter
  162.  
  163. on mouseLeave
  164.   put empty into fld "Tell"
  165.   changeCurs 69
  166. end mouseleave
  167.  
  168. On mouseDown
  169.   Global ClickSND
  170.   play ClickSND
  171. End mouseDown
  172.  
  173.  
  174. -- part 5 (field)
  175. -- low flags: 01
  176. -- high flags: 2000
  177. -- rect: left=84 top=165 right=185 bottom=275
  178. -- title width / last selected line: 0
  179. -- icon id / first selected line: 0 / 0
  180. -- text alignment: 0
  181. -- font id: 242
  182. -- text size: 9
  183. -- style flags: 0
  184. -- line height: 12
  185. -- part name: Choice
  186. ----- HyperTalk script -----
  187. on mouseUp
  188.   get me
  189.   if it is empty
  190.   then
  191.   put "Please choose a product!" into fld "Tell"
  192.   exit mouseUp
  193. else
  194.   put char 1 to 26 of it into prod
  195.   set cursor to busy
  196.   visual effect dissolve
  197.   go card prod of stack "Products"
  198. end if
  199. end mouseUp
  200.  
  201. on mouseEnter
  202.   put "Product Chosen Field" & return & "click for more info" into fld "Tell"
  203. end mouseEnter
  204.  
  205. on mouseLeave
  206.   put empty into fld "Tell"
  207. end mouseleave
  208.  
  209. On mouseDown
  210.   Global ClickSND
  211.   play ClickSND
  212. End mouseDown
  213.  
  214.  
  215. -- part 7 (field)
  216. -- low flags: 01
  217. -- high flags: 0000
  218. -- rect: left=89 top=60 right=143 bottom=167
  219. -- title width / last selected line: 0
  220. -- icon id / first selected line: 0 / 0
  221. -- text alignment: 0
  222. -- font id: 242
  223. -- text size: 12
  224. -- style flags: 0
  225. -- line height: 16
  226. -- part name: headerX
  227.  
  228.  
  229. -- part 10 (field)
  230. -- low flags: 01
  231. -- high flags: 0000
  232. -- rect: left=170 top=49 right=63 bottom=234
  233. -- title width / last selected line: 0
  234. -- icon id / first selected line: 0 / 0
  235. -- text alignment: 0
  236. -- font id: 3
  237. -- text size: 9
  238. -- style flags: 256
  239. -- line height: 12
  240. -- part name: env
  241.  
  242.  
  243. -- part 11 (field)
  244. -- low flags: 01
  245. -- high flags: 0000
  246. -- rect: left=237 top=49 right=63 bottom=375
  247. -- title width / last selected line: 0
  248. -- icon id / first selected line: 0 / 0
  249. -- text alignment: 0
  250. -- font id: 3
  251. -- text size: 9
  252. -- style flags: 256
  253. -- line height: 12
  254. -- part name: sol
  255.  
  256.  
  257. -- part 12 (field)
  258. -- low flags: 01
  259. -- high flags: 2000
  260. -- rect: left=275 top=165 right=185 bottom=421
  261. -- title width / last selected line: 0
  262. -- icon id / first selected line: 0 / 0
  263. -- text alignment: 0
  264. -- font id: 242
  265. -- text size: 9
  266. -- style flags: 0
  267. -- line height: 12
  268. -- part name: Category
  269. ----- HyperTalk script -----
  270. on mouseEnter
  271.   put "Category Field" & return & "" into fld "Tell"
  272. end mouseEnter
  273.  
  274. on mouseLeave
  275.   put empty into fld "Tell"
  276. end mouseleave
  277.  
  278.  
  279. -- part 14 (field)
  280. -- low flags: 81
  281. -- high flags: 0002
  282. -- rect: left=86 top=48 right=152 bottom=164
  283. -- title width / last selected line: 0
  284. -- icon id / first selected line: 0 / 0
  285. -- text alignment: 0
  286. -- font id: 3
  287. -- text size: 9
  288. -- style flags: 256
  289. -- line height: 12
  290. -- part name: envList
  291. ----- HyperTalk script -----
  292. on mouseUp
  293.   global env,theRoom,prodname,prodname2,prodname3,tidyUpNow
  294.   --‚àÜ select and highlight line
  295.   put SelectionAndHiliter() into lineNumber
  296.   --‚àÜ Get the line and test
  297.   get line lineNumber of me
  298.   if it is "Macintosh" then put "Mac" into it
  299.   --‚àÜ test for empty selection
  300.   if it is empty then
  301.     play cymbal
  302.     answer "Click directly on your choice" with "Try again!"
  303.     exit mouseUp
  304.     hide me
  305.   end if
  306.   --‚àÜ clear product data fields for new environment
  307.   put empty into cd fld "Reads"
  308.   put empty into cd fld "Writes"
  309.   put empty into cd fld "Network"
  310.   put empty into cd fld "Choice"
  311.   put empty into cd fld "Category"
  312.   --‚àÜ test for a change in environments to avoid inconsistencies when
  313.   --‚àÜ returning to the room later.
  314.   set lockScreen to true
  315.   set cursor to busy
  316.   put env into startingEnv
  317.   put it into env
  318.   if env <> startingEnv then
  319.     --‚àÜ Track environment change
  320.     put true into tidyUpNow
  321.     put empty into prodname
  322.     put empty into prodname2
  323.     put empty into prodname3
  324.   end if
  325.   --‚àÜ set room name suffix to return to correct room
  326.   put "" into roomSuffix
  327.   if env is "PC" then
  328.     put "Micro" into roomSuffix
  329.   end if
  330.   if env is "Mac" then
  331.     put "Mac" into roomSuffix
  332.   end if
  333.   put ("Room" & roomSuffix) into theRoom
  334.   --‚àÜ get the correct list for the solution menu
  335.   get cd fld (env & "Sol") of card "Limit"
  336.   --‚àÜ eliminate following two options from the list, they are not
  337.   --‚àÜ appropriate here.
  338.   if last line of it is "Hardware" then
  339.     delete last line of it
  340.   end if
  341.   if last line of it is "Network¬†Services" then
  342.     delete last line of it
  343.   end if
  344.   --‚àÜ put the correct(ed) list into the solution menu
  345.   put it into cd fld "SolList"
  346.   --‚àÜ hide menu elements and return to card showing new selections
  347.   hide me
  348.   hide cd btn "envChoiceHilite"
  349.   hide cd btn "envListHiliter"
  350.   unlock screen
  351.   send openCard to this card
  352. end mouseUp
  353.  
  354. on mouseEnter
  355.   put "Environments Field" & return & "click to choose" into fld "Tell"
  356.   changeCurs 6069
  357. end mouseEnter
  358.  
  359. on mouseLeave
  360.   put empty into fld "Tell"
  361.   changeCurs 69
  362. end mouseleave
  363.  
  364. On mouseDown
  365.   Global ClickSND
  366.   play ClickSND
  367. End mouseDown
  368.  
  369.  
  370. -- part 19 (button)
  371. -- low flags: 00
  372. -- high flags: 8004
  373. -- rect: left=93 top=266 right=283 bottom=247
  374. -- title width / last selected line: 0
  375. -- icon id / first selected line: 0 / 0
  376. -- text alignment: 1
  377. -- font id: 132
  378. -- text size: 12
  379. -- style flags: 8192
  380. -- line height: 16
  381. -- part name: Get Vendor Info
  382. ----- HyperTalk script -----
  383. on mouseUp
  384.   if cd field "Choice" is empty
  385.   then
  386.   put "Please Select a Product!" into fld "Tell"
  387.   exit mouseUp
  388. else
  389.   send mouseUp to cd fld "Choice"
  390. end if
  391. end mouseUp
  392.  
  393. on mouseEnter
  394.   put "Go to Products Button" & return & "goes to the product card" into fld "Tell"
  395.   changeCurs 6069
  396. end mouseEnter
  397.  
  398. on mouseLeave
  399.   put empty into fld "Tell"
  400.   changecurs 69
  401. end mouseleave
  402.  
  403. On mouseDown
  404.   Global ClickSND
  405.   play ClickSND
  406. End mouseDown
  407.  
  408.  
  409. -- part 20 (button)
  410. -- low flags: 00
  411. -- high flags: 8004
  412. -- rect: left=272 top=266 right=283 bottom=426
  413. -- title width / last selected line: 0
  414. -- icon id / first selected line: 0 / 0
  415. -- text alignment: 1
  416. -- font id: 132
  417. -- text size: 12
  418. -- style flags: 8192
  419. -- line height: 16
  420. -- part name: Go Back to Room
  421. ----- HyperTalk script -----
  422. on mouseUp
  423.   global theRoom
  424.   set lockscreen to true
  425.   set cursor to busy
  426.   go to cd theRoom
  427.   unlock screen with dissolve
  428. end mouseUp
  429.  
  430. on mouseEnter
  431.   global env
  432.   changeCurs 6069
  433.   if env is "Mac" then
  434.     put "Return to Room Button" & return & "goes to the Macintosh Room" into fld "Tell"
  435.   else
  436.     put "Return to Room Button" & return & "goes to the" && env && "Room" into fld "Tell"
  437.   end if
  438. end mouseEnter
  439.  
  440. on mouseLeave
  441.   put empty into fld "Tell"
  442.   changeCurs 69
  443. end mouseleave
  444.  
  445. On mouseDown
  446.   Global ClickSND
  447.   play ClickSND
  448. End mouseDown
  449.  
  450.  
  451.  
  452. -- part 22 (field)
  453. -- low flags: 01
  454. -- high flags: 0000
  455. -- rect: left=89 top=217 right=267 bottom=195
  456. -- title width / last selected line: 0
  457. -- icon id / first selected line: 0 / 0
  458. -- text alignment: 0
  459. -- font id: 242
  460. -- text size: 9
  461. -- style flags: 0
  462. -- line height: 12
  463. -- part name: Reads
  464. ----- HyperTalk script -----
  465. on mouseEnter
  466.   put "the file types this" & return & "application can open" into fld "Tell"
  467. end mouseEnter
  468. on mouseLeave
  469.   put empty into fld "Tell"
  470. end mouseleave
  471.  
  472.  
  473. -- part 24 (field)
  474. -- low flags: 01
  475. -- high flags: 0000
  476. -- rect: left=197 top=217 right=267 bottom=285
  477. -- title width / last selected line: 0
  478. -- icon id / first selected line: 0 / 0
  479. -- text alignment: 0
  480. -- font id: 242
  481. -- text size: 9
  482. -- style flags: 0
  483. -- line height: 12
  484. -- part name: Writes
  485. ----- HyperTalk script -----
  486. on mouseEnter
  487.   put "the file types the" & return & "application can save" into fld "Tell"
  488. end mouseEnter
  489. on mouseLeave
  490.   put empty into fld "Tell"
  491. end mouseleave
  492.  
  493.  
  494. -- part 25 (field)
  495. -- low flags: 01
  496. -- high flags: 0000
  497. -- rect: left=280 top=217 right=266 bottom=382
  498. -- title width / last selected line: 0
  499. -- icon id / first selected line: 0 / 0
  500. -- text alignment: 0
  501. -- font id: 242
  502. -- text size: 9
  503. -- style flags: 0
  504. -- line height: 12
  505. -- part name: Network
  506. ----- HyperTalk script -----
  507. on mouseEnter
  508.   put "network communication method" into fld "Tell"
  509. end mouseEnter
  510. on mouseLeave
  511.   put empty into fld "Tell"
  512. end mouseleave
  513.  
  514.  
  515. -- part 31 (field)
  516. -- low flags: 01
  517. -- high flags: 0000
  518. -- rect: left=86 top=36 right=49 bottom=168
  519. -- title width / last selected line: 0
  520. -- icon id / first selected line: 0 / 0
  521. -- text alignment: 0
  522. -- font id: 3
  523. -- text size: 9
  524. -- style flags: 256
  525. -- line height: 12
  526. -- part name: envChoices
  527. ----- HyperTalk script -----
  528. on mouseUp
  529.   show cd btn "envChoiceHilite"
  530.   set the visible of cd field "envList" to not the visible of cd field "EnvList"
  531. end mouseUp
  532.  
  533. on mouseEnter
  534.   put "Change Environment Menu" & return & "click to show a list" into fld "Tell"
  535.   changeCurs 6069
  536. end mouseEnter
  537.  
  538. on mouseLeave
  539.   put empty into fld "Tell"
  540.   changeCurs 69
  541. end mouseleave
  542.  
  543. On mouseDown
  544.   Global ClickSND
  545.   play ClickSND
  546. End mouseDown
  547.  
  548.  
  549. -- part 32 (field)
  550. -- low flags: 01
  551. -- high flags: 0000
  552. -- rect: left=174 top=36 right=50 bottom=293
  553. -- title width / last selected line: 0
  554. -- icon id / first selected line: 0 / 0
  555. -- text alignment: 0
  556. -- font id: 3
  557. -- text size: 9
  558. -- style flags: 256
  559. -- line height: 12
  560. -- part name: solChoices
  561. ----- HyperTalk script -----
  562. on mouseUp
  563.   show cd btn "solChoiceHilite"
  564.   set the visible of cd field "solList" to not the visible of cd field "solList"
  565. end mouseUp
  566.  
  567. on mouseEnter
  568.   put "Change Solution Menu" & return & "click to show a list" into fld "Tell"
  569.   changeCurs 6069
  570. end mouseEnter
  571.  
  572. on mouseLeave
  573.   put empty into fld "Tell"
  574.   changeCurs 69
  575. end mouseleave
  576.  
  577. On mouseDown
  578.   Global ClickSND
  579.   play ClickSND
  580. End mouseDown
  581.  
  582.  
  583. -- part 33 (button)
  584. -- low flags: 80
  585. -- high flags: 4000
  586. -- rect: left=86 top=36 right=48 bottom=164
  587. -- title width / last selected line: 0
  588. -- icon id / first selected line: 0 / 0
  589. -- text alignment: 1
  590. -- font id: 0
  591. -- text size: 12
  592. -- style flags: 0
  593. -- line height: 16
  594. -- part name: envChoiceHilite
  595.  
  596.  
  597. -- part 34 (button)
  598. -- low flags: 80
  599. -- high flags: 4000
  600. -- rect: left=174 top=36 right=48 bottom=307
  601. -- title width / last selected line: 0
  602. -- icon id / first selected line: 0 / 0
  603. -- text alignment: 1
  604. -- font id: 0
  605. -- text size: 12
  606. -- style flags: 0
  607. -- line height: 16
  608. -- part name: solChoiceHilite
  609.  
  610.  
  611. -- part 36 (button)
  612. -- low flags: 80
  613. -- high flags: 4000
  614. -- rect: left=87 top=85 right=97 bottom=163
  615. -- title width / last selected line: 0
  616. -- icon id / first selected line: 0 / 0
  617. -- text alignment: 1
  618. -- font id: 0
  619. -- text size: 12
  620. -- style flags: 0
  621. -- line height: 16
  622. -- part name: envListHiliter
  623.  
  624.  
  625. -- part 37 (button)
  626. -- low flags: 00
  627. -- high flags: 0000
  628. -- rect: left=70 top=13 right=28 bottom=82
  629. -- title width / last selected line: 0
  630. -- icon id / first selected line: 0 / 0
  631. -- text alignment: 1
  632. -- font id: 0
  633. -- text size: 12
  634. -- style flags: 0
  635. -- line height: 16
  636. -- part name: boneHarp
  637. ----- HyperTalk script -----
  638. on mouseUp
  639.   play boneharp
  640. end mouseUp
  641.  
  642.  
  643.  
  644. -- part 40 (field)
  645. -- low flags: 01
  646. -- high flags: 0000
  647. -- rect: left=12 top=0 right=30 bottom=211
  648. -- title width / last selected line: 0
  649. -- icon id / first selected line: 0 / 0
  650. -- text alignment: 0
  651. -- font id: 156
  652. -- text size: 18
  653. -- style flags: 2048
  654. -- line height: 24
  655. -- part name: FloorName
  656.  
  657.  
  658. -- part 41 (button)
  659. -- low flags: 80
  660. -- high flags: 4000
  661. -- rect: left=171 top=120 right=134 bottom=404
  662. -- title width / last selected line: 0
  663. -- icon id / first selected line: 0 / 0
  664. -- text alignment: 1
  665. -- font id: 0
  666. -- text size: 12
  667. -- style flags: 0
  668. -- line height: 16
  669. -- part name: explainerHiliter
  670.  
  671.  
  672. -- part 15 (field)
  673. -- low flags: 81
  674. -- high flags: 0002
  675. -- rect: left=174 top=48 right=160 bottom=307
  676. -- title width / last selected line: 0
  677. -- icon id / first selected line: 0 / 0
  678. -- text alignment: 0
  679. -- font id: 3
  680. -- text size: 9
  681. -- style flags: 256
  682. -- line height: 12
  683. -- part name: solList
  684. ----- HyperTalk script -----
  685. on mouseUp
  686.   global sol
  687.   --‚àÜ select and highlight line
  688.   put SelectionAndHiliter() into lineNumber
  689.   --‚àÜ Convert line number to the contents of the line
  690.   do "put line " & lineNumber & " of " & name of me & " into name"
  691.   --‚àÜ test for empty selection
  692.   if name is "" then
  693.     play cymbal
  694.     answer "Click directly on your choice" with "Try again!"
  695.     exit mouseUp
  696.   end if
  697.   --‚àÜ now hide menu and place new selection in card
  698.   set lockScreen to true
  699.   set cursor to busy
  700.   put empty into cd fld "Reads"
  701.   put empty into cd fld "Writes"
  702.   put empty into cd fld "Network"
  703.   put empty into cd fld "Choice"
  704.   put empty into cd fld "Category"
  705.   hide me
  706.   hide cd btn "solChoiceHilite"
  707.   hide cd btn "solListHiliter"
  708.   put name into sol
  709.   unlock screen
  710.   send openCard to this card
  711. end mouseUp
  712.  
  713. on mouseEnter
  714.   put "Solutions Field" & return & "click to choose" into fld "Tell"
  715.   changeCurs 6069
  716. end mouseEnter
  717.  
  718. on mouseLeave
  719.   put empty into fld "Tell"
  720.   changeCurs 69
  721. end mouseleave
  722.  
  723. On mouseDown
  724.   Global ClickSND
  725.   play ClickSND
  726. End mouseDown
  727.  
  728.  
  729. -- part 35 (button)
  730. -- low flags: 80
  731. -- high flags: 4000
  732. -- rect: left=175 top=73 right=85 bottom=306
  733. -- title width / last selected line: 0
  734. -- icon id / first selected line: 0 / 0
  735. -- text alignment: 1
  736. -- font id: 0
  737. -- text size: 12
  738. -- style flags: 0
  739. -- line height: 16
  740. -- part name: solListHiliter
  741.  
  742.  
  743. -- part contents for card part 7
  744. ----- text -----
  745. Click on a product at right for more information:
  746.  
  747. -- part contents for card part 14
  748. ----- text -----
  749. Digital
  750. IBM
  751. Macintosh
  752. PC
  753. Tandem
  754. UNIX
  755. Wang
  756.  
  757. -- part contents for card part 10
  758. ----- text -----
  759. Digital
  760.  
  761. -- part contents for card part 11
  762. ----- text -----
  763. Office Productivity
  764.  
  765. -- part contents for card part 31
  766. ----- text -----
  767. Environments
  768.  
  769. -- part contents for card part 32
  770. ----- text -----
  771. Solution Areas
  772.  
  773. -- part contents for card part 40
  774. ----- text -----
  775. Macintosh Screen
  776.  
  777. -- part contents for card part 15
  778. ----- text -----
  779. Communications
  780. Engineering/CAD
  781. Info Management
  782. Office Productivity
  783. Publishing
  784. Software Development
  785.  
  786.  
  787. -- part contents for card part 2
  788. ----- text -----
  789. Full Impact
  790. FullWrite Professional
  791. INSIGHT
  792. MacWrite II
  793. Microsoft Excel 2.2 
  794. Microsoft Word/Macintosh
  795. Wingz
  796. WordPerfect for the Macintosh 1.0.4:
  797.  
  798.  
  799. -- part contents for card part 5
  800. ----- text -----
  801. Microsoft Excel 2.2 
  802.  
  803. -- part contents for card part 12
  804. ----- text -----
  805. Spreadsheet
  806.  
  807. -- part contents for card part 22
  808. ----- text -----
  809. ASCII
  810. dBase Mac
  811. dBase PC
  812. DIF
  813. SYLK
  814. WK1
  815. WKS
  816.  
  817.  
  818. -- part contents for card part 24
  819. ----- text -----
  820. ASCII
  821. dBase Mac
  822. dBase PC
  823. DIF
  824. SYLK
  825. WK1
  826. WKS
  827.  
  828.  
  829. -- part contents for card part 25
  830. ----- text -----
  831. Data Access Language
  832. File Transfer
  833.